Open Licenses for Articles on Adarie

by Peter de Blanc + ChatGPT 4o
Posted to Adarie (www.adarie.com) on March 19, 2025
Content License: Creative Commons CC0 (No Rights Reserved)


Since Adarie is for sharing research and academic writing, we should offer licensing options that align with open access and academic publishing standards. Here are some options to include:

Common Open Licenses

  1. Creative Commons (CC) Licenses – Popular for academic and research works:

  2. Public Domain Dedications

  3. Academic and Research-Oriented Licenses

  4. Custom / Proprietary Licenses

Implementation Suggestions


Here are the official URLs for each license:

Creative Commons Licenses

Public Domain Dedications

Academic and Research-Oriented Licenses

General Copyright

If we plan to allow users to specify a custom license, we could also provide a text field where they can enter their own license URL.


Here's the above data formatted as JSON:

export const LICENSES: License[] = [
  {
    id: "CC BY 4.0",
    displayName: "Creative Commons BY (Attribution)",
    url: "https://creativecommons.org/licenses/by/4.0/",
  },
  {
    id: "CC BY-SA 4.0",
    displayName: "Creative Commons BY-SA (Attribution-ShareAlike)",
    url: "https://creativecommons.org/licenses/by-sa/4.0/",
  },
  {
    id: "CC BY-NC 4.0",
    displayName: "Creative Commons BY-NC (Attribution-NonCommercial)",
    url: "https://creativecommons.org/licenses/by-nc/4.0/",
  },
  {
    id: "CC BY-NC-SA 4.0",
    displayName: "Creative Commons BY-NC-SA (Attribution-NonCommercial-ShareAlike)",
    url: "https://creativecommons.org/licenses/by-nc-sa/4.0/",
  },
  {
    id: "CC BY-ND 4.0",
    displayName: "Creative Commons BY-ND (Attribution-NoDerivs)",
    url: "https://creativecommons.org/licenses/by-nd/4.0/",
  },
  {
    id: "CC BY-NC-ND 4.0",
    displayName: "Creative Commons BY-NC-ND (Attribution-NonCommercial-NoDerivs)",
    url: "https://creativecommons.org/licenses/by-nc-nd/4.0/",
  },
  {
    id: "CC0 1.0",
    displayName: "Creative Commons CC0 (No Rights Reserved)",
    url: "https://creativecommons.org/publicdomain/zero/1.0/",
  },
  {
    id: "PDM 1.0",
    displayName: "Public Domain Mark (PDM)",
    url: "https://creativecommons.org/publicdomain/mark/1.0/",
  },
  {
    id: "MIT",
    displayName: "MIT License",
    url: "https://opensource.org/licenses/MIT",
  },
  {
    id: "ODC-BY",
    displayName: "Open Data Commons Attribution License (ODC-By)",
    url: "https://opendatacommons.org/licenses/by/",
  },
  {
    id: "ALL_RIGHTS_RESERVED",
    displayName: "All Rights Reserved",
    url: "",
  },
  {
    id: "CUSTOM",
    displayName: "Custom License (User-Provided)",
    url: "",
  }
];

This setup: